home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2005 October / PCWOCT05.iso / Software / FromTheMag / XAMPP 1.4.14 / xampp-win32-1.4.14-installer.exe / xampp / php / pear / XML_CSSML / docs / example.php
PHP Script  |  2004-03-24  |  515b  |  15 lines

  1. <?php
  2. require_once '../CSSML.php';
  3. error_reporting(E_ALL);
  4. $cssml = '<cssml:CSSML xmlns:cssml="http://pear.php.net/cssml/1.0">
  5.   <style browserInclude="not(gecko)" filterInclude="admin">
  6.     <selector>p</selector>
  7.     <declaration property="color">text</declaration>
  8.   </style>
  9. </cssml:CSSML>';
  10. $cssml = new XML_CSSML('libxslt', $cssml, 'string', array('browser' => 'ns4', 'filter' => 'admin', 'comment' => 'hello there!', 'output' => 'foo.css'));
  11. //print_r($cssml);
  12. //echo $cssml->process();
  13. $cssml->process();
  14. ?>
  15.